home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / domacnost a kancelar / findgraph / fgraph.exe / {app} / TestVC / Crov.cpp < prev    next >
C/C++ Source or Header  |  2002-08-09  |  4KB  |  170 lines

  1. // Crov.cpp : Defines the class behaviors for the application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Crov.h"
  6.  
  7. #include "MainFrm.h"
  8. #include "MainDoc.h"
  9. #include "MainView.h"
  10.  
  11. #ifdef _DEBUG
  12. #define new DEBUG_NEW
  13. #undef THIS_FILE
  14. static char THIS_FILE[] = __FILE__;
  15. #endif
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CCrovApp
  19.  
  20. BEGIN_MESSAGE_MAP(CCrovApp, CWinApp)
  21.     //{{AFX_MSG_MAP(CCrovApp)
  22.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  23.         // NOTE - the ClassWizard will add and remove mapping macros here.
  24.         //    DO NOT EDIT what you see in these blocks of generated code!
  25.     //}}AFX_MSG_MAP
  26.     // Standard file based document commands
  27.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  28.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  29.     // Standard print setup command
  30.     ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  31. END_MESSAGE_MAP()
  32.  
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CCrovApp construction
  35.  
  36. CCrovApp::CCrovApp()
  37. {
  38.     // TODO: add construction code here,
  39.     // Place all significant initialization in InitInstance
  40. }
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // The one and only CCrovApp object
  44.  
  45. CCrovApp theApp;
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CCrovApp initialization
  49.  
  50. BOOL CCrovApp::InitInstance()
  51. {
  52.     // Initialize OLE libraries
  53.     if (!AfxOleInit())
  54.     {
  55.         AfxMessageBox(IDP_OLE_INIT_FAILED);
  56.         return FALSE;
  57.     }
  58.  
  59.     AfxEnableControlContainer();
  60.  
  61.     // Standard initialization
  62.     // If you are not using these features and wish to reduce the size
  63.     //  of your final executable, you should remove from the following
  64.     //  the specific initialization routines you do not need.
  65.  
  66. #ifdef _AFXDLL
  67.     Enable3dControls();            // Call this when using MFC in a shared DLL
  68. #else
  69.     Enable3dControlsStatic();    // Call this when linking to MFC statically
  70. #endif
  71.  
  72.     // Change the registry key under which our settings are stored.
  73.     // TODO: You should modify this string to be something appropriate
  74.     // such as the name of your company or organization.
  75.     SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  76.  
  77.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  78.  
  79.     // Register the application's document templates.  Document templates
  80.     //  serve as the connection between documents, frame windows and views.
  81.  
  82.     CSingleDocTemplate* pDocTemplate;
  83.     pDocTemplate = new CSingleDocTemplate(
  84.         IDR_MAINFRAME,
  85.         RUNTIME_CLASS(CMainDoc),
  86.         RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  87.         RUNTIME_CLASS(CMainView));
  88.     pDocTemplate->SetContainerInfo(IDR_CNTR_INPLACE);
  89.     AddDocTemplate(pDocTemplate);
  90.  
  91.     // Enable DDE Execute open
  92.     EnableShellOpen();
  93.     RegisterShellFileTypes(TRUE);
  94.  
  95.     // Parse command line for standard shell commands, DDE, file open
  96.     CCommandLineInfo cmdInfo;
  97.     ParseCommandLine(cmdInfo);
  98.  
  99.     // Dispatch commands specified on the command line
  100.     if (!ProcessShellCommand(cmdInfo))
  101.         return FALSE;
  102.  
  103.     // The one and only window has been initialized, so show and update it.
  104.     m_pMainWnd->ShowWindow(SW_SHOW);
  105.     m_pMainWnd->UpdateWindow();
  106.  
  107.     // Enable drag/drop open
  108.     m_pMainWnd->DragAcceptFiles();
  109.  
  110.     return TRUE;
  111. }
  112.  
  113.  
  114. /////////////////////////////////////////////////////////////////////////////
  115. // CAboutDlg dialog used for App About
  116.  
  117. class CAboutDlg : public CDialog
  118. {
  119. public:
  120.     CAboutDlg();
  121.  
  122. // Dialog Data
  123.     //{{AFX_DATA(CAboutDlg)
  124.     enum { IDD = IDD_ABOUTBOX };
  125.     //}}AFX_DATA
  126.  
  127.     // ClassWizard generated virtual function overrides
  128.     //{{AFX_VIRTUAL(CAboutDlg)
  129.     protected:
  130.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  131.     //}}AFX_VIRTUAL
  132.  
  133. // Implementation
  134. protected:
  135.     //{{AFX_MSG(CAboutDlg)
  136.         // No message handlers
  137.     //}}AFX_MSG
  138.     DECLARE_MESSAGE_MAP()
  139. };
  140.  
  141. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  142. {
  143.     //{{AFX_DATA_INIT(CAboutDlg)
  144.     //}}AFX_DATA_INIT
  145. }
  146.  
  147. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  148. {
  149.     CDialog::DoDataExchange(pDX);
  150.     //{{AFX_DATA_MAP(CAboutDlg)
  151.     //}}AFX_DATA_MAP
  152. }
  153.  
  154. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  155.     //{{AFX_MSG_MAP(CAboutDlg)
  156.         // No message handlers
  157.     //}}AFX_MSG_MAP
  158. END_MESSAGE_MAP()
  159.  
  160. // App command to run the dialog
  161. void CCrovApp::OnAppAbout()
  162. {
  163.     CAboutDlg aboutDlg;
  164.     aboutDlg.DoModal();
  165. }
  166.  
  167. /////////////////////////////////////////////////////////////////////////////
  168. // CCrovApp message handlers
  169.  
  170.